GtkActionable: Improve property names
authorMatthias Clasen <mclasen@redhat.com>
Thu, 10 Mar 2016 02:13:44 +0000 (21:13 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 10 Mar 2016 02:59:43 +0000 (21:59 -0500)
These names show up as title in the property editor
in the inspector, so we want them to look consistent
with the rest.

gtk/gtkactionable.c

index 29a7f161924ddbc53bcc6891cf0c58b603114d9c..b41aabb030941aa74a17ef1e9947cee5bff53ef8 100644 (file)
@@ -68,12 +68,12 @@ static void
 gtk_actionable_default_init (GtkActionableInterface *iface)
 {
   g_object_interface_install_property (iface,
-    g_param_spec_string ("action-name", P_("action name"),
+    g_param_spec_string ("action-name", P_("Action name"),
                          P_("The name of the associated action, like 'app.quit'"),
                          NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
 
   g_object_interface_install_property (iface,
-    g_param_spec_variant ("action-target", P_("action target value"),
+    g_param_spec_variant ("action-target", P_("Action target value"),
                           P_("The parameter for action invocations"),
                           G_VARIANT_TYPE_ANY, NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
 }